home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Share.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  441 b   |  24 lines

  1. /* Copyright (C) 1986-2001 by Digital Mars. $Revision: 1.1.1.1 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __SHARE_H
  7. #define __SHARE_H 1
  8.  
  9. #ifndef __STDC__
  10. #define SH_COMPAT    0x00
  11. #define SH_DENYRW    0x10
  12. #define SH_DENYWR    0x20
  13. #define SH_DENYRD    0x30
  14. #define SH_DENYNO    0x40
  15. #endif
  16.  
  17. #define _SH_COMPAT    0x00
  18. #define _SH_DENYRW    0x10
  19. #define _SH_DENYWR    0x20
  20. #define _SH_DENYRD    0x30
  21. #define _SH_DENYNO    0x40
  22.  
  23. #endif
  24.